home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
Other Langs
/
MacPerl ƒ
/
Perl Source ƒ
/
Perl
/
macscripts
/
sendps
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-10-23
|
297 b
|
21 lines
|
[
TEXT/MPS
]
Perl -Sx "{0}" {"Parameters"}
Exit
#!/usr/local/bin/perl
$| = 1;
open(PRINTER, "+>Dev:Printer") || die "couldn't open connection to laserwriter";
select((select(PRINTER), $|=1, $/="\012")[0]);
while (<>) {
print PRINTER;
}
shutdown(PRINTER,1);
while (<PRINTER>) {
s/\012/\015/g;
print;
}